home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / The Hacks / Mac OS X Patching Docs / Hi / main.c < prev   
Encoding:
C/C++ Source or Header  |  2001-06-23  |  273 b   |  20 lines

  1. /*
  2.     main.c
  3.     in Hi.framework
  4.     
  5.     a simple set of functions for the express purpose of demonstrating
  6.     framework usage, and also framework abusage!
  7. */
  8.  
  9. #include <stdio.h>
  10.  
  11. void helloWorld()
  12. {
  13.     printf("Hello, World!\n");
  14. }
  15.  
  16. void goodbyeWorld()
  17. {
  18.     printf("Goodbye, World!\n");
  19. }
  20.